home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 1999 August / SGI Freeware 1999 August.iso / dist / fw_teTeX.idb / usr / freeware / teTeX / texmf / doc / Makefile.z / Makefile
Encoding:
Makefile  |  1999-01-26  |  502 b   |  24 lines

  1. SHELL=/bin/sh
  2.  
  3. subdirs=latex/rotating latex/rotfloat latex/general latex/graphics texdraw latex/psfrag latex/draftcopy
  4.  
  5. default: all helpindex
  6.  
  7. all:
  8.     for d in $(subdirs); do \
  9.       if test -d $$d; then (cd $$d; $(MAKE) $@); \
  10.       else true; fi; done
  11.  
  12. helpindex:
  13.     ./mkhtml > helpindex.html
  14.  
  15. clean:
  16.     for d in $(subdirs); do \
  17.       if test -d $$d; then (cd $$d; $(MAKE) $@); \
  18.       else true; fi; done
  19.  
  20. realclean:
  21.     for d in $(subdirs); do \
  22.       if test -d $$d; then (cd $$d; $(MAKE) $@); \
  23.       else true; fi; done
  24.